home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / etc / skel / Mac4Lin_v1.0 / Mozilla / Thunderbird / awn-notif-0.2-tb-linux.xpi / content / overlay.js~ < prev    next >
Encoding:
Text File  |  2007-05-28  |  5.7 KB  |  138 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  *   Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  * 
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Awn-notif.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Thesa aka Florian Bir√©e
  18.  * Portions created by the Initial Developer are Copyright (C) 2007
  19.  * the Initial Developer. All Rights Reserved.
  20.  * 
  21.  * Portions of code are from the Thunderled extension.
  22.  * The Initial Developer of Thunderled is
  23.  * leo1981 (Leonardo Prosperi).
  24.  * Portions created by Leonardo Prosperi are Copyright (C) 2007
  25.  * Leonardo Prosperi. All Rights Reserved.
  26.  *
  27.  * Contributor(s):
  28.  *
  29.  * Alternatively, the contents of this file may be used under the terms of
  30.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  31.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  * in which case the provisions of the GPL or the LGPL are applicable instead
  33.  * of those above. If you wish to allow use of your version of this file only
  34.  * under the terms of either the GPL or the LGPL, and not to allow others to
  35.  * use your version of this file under the terms of the MPL, indicate your
  36.  * decision by deleting the provisions above and replace them with the notice
  37.  * and other provisions required by the GPL or the LGPL. If you do not delete
  38.  * the provisions above, a recipient may use your version of this file under
  39.  * the terms of any one of the MPL, the GPL or the LGPL.
  40.  * 
  41.  * ***** END LICENSE BLOCK ***** */
  42.  
  43. var strings;
  44. var noReading;
  45. var error;
  46. var manyMails;
  47. var inbox;
  48.  
  49. var AwnNotif = {
  50.     consoleService: Components.classes["@mozilla.org/consoleservice;1"].getService(Components.interfaces.nsIConsoleService),
  51.     
  52.     onLoad: function() {
  53.         this.initialized = true;
  54.         strings = document.getElementById("awn-notif-strings");
  55.         noReading = strings.getString('noReading');
  56.         error = strings.getString('error');
  57.         manyMails = strings.getString('manyMails');
  58.         inbox = strings.getString('inbox');
  59.     },
  60.     
  61.     onClose: function() {
  62.         this.initialized = true;
  63.         AwnNotif.number(0);
  64.     },
  65.     
  66.     number: function(x){
  67.         try {
  68.             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
  69.         } catch (e) {
  70.             alert(noReading);
  71.         }
  72.         var file = Components.classes["@mozilla.org/file/local;1"]
  73.             .createInstance(Components.interfaces.nsILocalFile);
  74.         
  75.         const DIR_SERVICE = new 
  76.             Components.Constructor("@mozilla.org/file/directory_service;1","nsIProperties");
  77.         try { 
  78.             path=(new DIR_SERVICE()).get("ProfD", Components.interfaces.nsIFile).path; 
  79.         } catch (e) {
  80.             alert(error);
  81.         }
  82.         path = path + "/extensions/{761e13a8-9891-ef56-a4ee-988fa1bd8bbd}/content/awn-notif.py";
  83.         file.initWithPath(path);
  84.         
  85.         var args = [x, manyMails];
  86.         var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
  87.         process.init(file);
  88.         process.run(false, args, args.length);
  89.     },
  90.     
  91.     folderListener: { 
  92.         OnItemAdded: function(parentItem, item, view){
  93.             try {
  94.                 var mitem = item.QueryInterface(Components.interfaces.nsIMsgDBHdr);
  95.             }
  96.             catch(e) {return;}
  97.             var folder = mitem.folder;
  98.             while(folder.prettyName!=inbox && folder.rootFolder!=folder.parentMsgFolder){folder=folder.parentMsgFolder;}
  99.             AwnNotif.number(folder.getNumUnread(true) + 1);
  100.         },
  101.         OnItemRemoved: function(parentItem, item, view){
  102.         },
  103.         OnItemPropertyChanged: function(item, property, oldValue, newValue) {
  104.         },
  105.         OnItemIntPropertyChanged: function(item, property, oldValue, newValue) {
  106.         },
  107.         OnItemBoolPropertyChanged: function(item, property, oldValue, newValue) {
  108.         },
  109.         OnItemUnicharPropertyChanged: function(item, property, oldValue, newValue){
  110.         },
  111.         OnItemPropertyFlagChanged: function(item, property, oldFlag, newFlag) {
  112.             var folder = item.folder;
  113.             while(folder.prettyName!=inbox && folder.rootFolder!=folder.parentMsgFolder){folder=folder.parentMsgFolder;}
  114.             if (property=="Status"){
  115.                 if (!item.isRead){
  116.                     AwnNotif.number(folder.getNumUnread(true) + 1);
  117.                 } else {
  118.                     AwnNotif.number(folder.getNumUnread(true) - 1);
  119.                 }
  120.             }
  121.  
  122.         },
  123.         OnItemEvent: function(folder, event){
  124.             while(folder.prettyName!=inbox && folder.rootFolder!=folder.parentMsgFolder){folder=folder.parentMsgFolder;}
  125.             AwnNotif.number(folder.getNumUnread(true));
  126.         }
  127.     },
  128.     
  129.     mailSession: '',
  130.     notifyFlags: ''
  131. };
  132.  
  133. window.addEventListener("load", function(e) { AwnNotif.onLoad(e); }, false);
  134. window.addEventListener("close", function(e) { AwnNotif.onClose(e); }, false); 
  135.  
  136. AwnNotif.mailSession = Components.classes["@mozilla.org/messenger/services/session;1"].getService(Components.interfaces.nsIMsgMailSession);
  137. AwnNotif.notifyFlags = Components.interfaces.nsIFolderListener.all;
  138. AwnNotif.mailSession.AddFolderListener(AwnNotif.folderListener, AwnNotif.notifyFlags);
  139.